Pointers (Cont.)
Pascal
C/C++
w
type
w
stuptr = ^node;
w
var
w
first: stuptr;
w
typedef
w
struct student *stuptr;
w
stuptr first;
w
OR
typedef
student *stuptr;
stuptr first;
NOTE:
In C, which form is used depends on whether the
type student was declared using typedef or not.